home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus Special 18 / AMIGAplus Sonderheft 18 (1999)(ICP)(DE)[!].iso / PD / Spiele / lazymines / lazymines_src / localize.h < prev    next >
C/C++ Source or Header  |  1999-01-03  |  573b  |  39 lines

  1. /*
  2.  * localize.h
  3.  * ==========
  4.  * Functions for localization.
  5.  *
  6.  * Copyright (C) 1994-1998 Håkan L. Younes (lorens@hem.passagen.se)
  7.  */
  8.  
  9. #ifndef LOCALIZE_H
  10. #define LOCALIZE_H
  11.  
  12. #include <exec/types.h>
  13. #include <libraries/gadtools.h>
  14.  
  15. #define CATCOMP_NUMBERS
  16. #include "strings.h"
  17.  
  18.  
  19. void
  20. init_locale (
  21.    char   *catalog,
  22.    ULONG   version);
  23.  
  24. void
  25. finalize_locale (void);
  26.  
  27. char *
  28. localized_string (
  29.    LONG   string_num);
  30.  
  31. struct Menu *
  32. CreateLocMenus (
  33.    struct NewMenu  *new_menus,
  34.    APTR             vis_info,
  35.    ULONG            tag,
  36.    ...);
  37.  
  38. #endif /* LOCALIZE_H */
  39.